home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / system / innosetup / isetup-5.1.8.exe / {app} / ISetup.chm / styles.css < prev    next >
Cascading Style Sheet File  |  2006-10-10  |  3KB  |  129 lines

  1. /*
  2.   Inno Setup
  3.   Copyright (C) 1997-2006 Jordan Russell
  4.   Portions by Martijn Laan
  5.   For conditions of distribution and use, see LICENSE.TXT.
  6.  
  7.   $jrsoftware: ishelp/Staging/styles.css,v 1.3 2006/09/28 23:42:16 jr Exp $
  8. */
  9.  
  10. BODY {
  11.     font: small arial, sans-serif;
  12.     margin: 0;
  13. }
  14. PRE, TT {
  15.     font: small "courier new", monospace;
  16. }
  17. P, H1, H2, H3, H4, H5, BLOCKQUOTE, PRE, FORM, OL, UL, LI, DL, DD, TABLE, .examplebox, DIV.margined {
  18.     /* only the end of paragraphs etc. has a margin */
  19.     margin-top: 0;
  20.     margin-bottom: 0.6em;
  21. }
  22. UL, DD {
  23.     /* specify both of these for firefox compat. */
  24.     margin-left: 0;
  25.     padding-left: 2em;
  26. }
  27. TABLE {
  28.     /* equivalent of cellspacing="0" */
  29.     border-collapse: collapse;
  30. }
  31. TD {
  32.     /* equivalent of cellpadding="0" */
  33.     padding: 0;
  34.     /* note: "baseline" is broken on IE6; it only aligns correctly when there's
  35.        a single line of text, and that text is directly inside the <TD> tag
  36.        (not inside a <DIV>). otherwise it behaves more like "top".
  37.            (firefox 1.5 and opera 9 don't have this problem) */
  38.     vertical-align: baseline;
  39. }
  40. A:link, A:visited, A:active {
  41.     color: #008000;
  42. }
  43.  
  44. .small {
  45.     /* what we want is an 8pt font. 8pt/10pt = 80%, but on firefox that
  46.        actually creates a font smaller than 8pt, so use 82% */
  47.     font-size: 82%;
  48. }
  49. .heading {
  50.     margin-top: 0.6em;
  51.     font-size: 120%;
  52.     font-weight: bold;
  53. }
  54. .notopmargin {
  55.     margin-top: 0;
  56. }
  57. .indent {
  58.     margin-left: 2em;
  59. }
  60. PRE.nomargin {
  61.     margin: 0;
  62. }
  63. LI.compact {
  64.     margin-bottom: 2px;
  65. }
  66.  
  67. .topicheading {
  68.     background: ButtonFace;
  69.     color: WindowText;
  70.     padding: 5px 8px;
  71.     margin: 0;
  72.     border-bottom: 1px solid black;
  73.     font-size: 120%;
  74.     font-weight: bold;
  75. }
  76. .topicbody {
  77.     padding: 8px;
  78. }
  79.  
  80. .examplebox {
  81.     background: #f8f8f8;
  82.     color: black;
  83.     padding: 4px;
  84.     border: 1px solid #e0e0e0;
  85.     /* on IE6, if the content of the box is wider than the page,
  86.        the width of the box is increased. on firefox 1.5, by default
  87.        the box width stays the same, and the content is drawn outside
  88.        the box. that looks ugly. "overflow: auto" tells it to put a
  89.        scroll bar on the box when the content is too wide. (IE6
  90.        apparently ignores "overflow: auto", at least here.) */
  91.     overflow: auto;
  92. }
  93. .exampleheader {
  94.     font-size: 82%;
  95.     font-weight: bold;
  96.     margin-bottom: 0.6em;
  97. }
  98.  
  99.  
  100. DT.paramlist {
  101.     margin-bottom: 0.6em;
  102. }
  103. DD.paramlist {
  104.     /* give a little extra spacing between items */
  105.     margin-bottom: 1.2em;
  106. }
  107.  
  108. DT.flaglist {
  109.     font-weight: bold;
  110. }
  111.  
  112. TD.cellleft {
  113.     white-space: nowrap;
  114. }
  115. TD.cellright {
  116.     padding-left: 2em;
  117. }
  118.  
  119. TABLE.setuphdr {
  120.     margin: 0;
  121. }
  122. TD.setuphdrl {
  123.     font-weight: bold;
  124.     white-space: nowrap;
  125. }
  126. TD.setuphdrr {
  127.     padding-left: 1em;
  128. }
  129.